home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / wtj009.zip / CPP_DLL.ZIP / HELLO.H < prev    next >
C/C++ Source or Header  |  1992-08-14  |  183b  |  12 lines

  1. // hello.h RHS 7/15/92
  2.  
  3. #if defined(_WINDLL) || (__DLL__)
  4. #define EXPORT _export
  5. #else
  6. #define EXPORT
  7. #endif
  8.  
  9. extern void FAR PASCAL EXPORT HelloMessage(LPSTR wintitle);
  10.  
  11.  
  12.